home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / M / MacOberon241.cpt / MacOberon 2.4(1) / Compiler.Tool (.txt) < prev    next >
Oberon Text  |  1991-10-17  |  696b  |  19 lines

  1. Syntax10.Scn.Fnt
  2. Syntax10i.Scn.Fnt
  3. Compiler.Compile *
  4. Compiler.Compile {filename} ~
  5. Compiler.DeleteSym {filename} ~
  6. The Oberon Compiler accepts the following options:
  7.     s    Enable generation of new Symbol File
  8.     x    Disable Index Checks
  9.     n    Disable NIL Checks for Pointers
  10.     p    Disable NIL Checks for Procedure Variables
  11.     t    Disable Type Checks
  12.     g    Suppress Garbage Collection after this Compilation
  13. Each file parameter may be followed by a slash ("/") and a list of options.
  14. If garbage collection is suppressed, compilation runs faster but might not
  15. be completed if too many files or too much memory are used.
  16. Examples:
  17.     Compiler.Compile */n
  18.     Compiler.Compile Test.Mod ~
  19.